home *** CD-ROM | disk | FTP | other *** search
/ 10,000 Great Games / 10,000 Great Games.iso / Product / 66 / data1.cab / Source_Files / Src / Line.cpp < prev    next >
C/C++ Source or Header  |  2000-01-16  |  434b  |  23 lines

  1. #include "stdafx.h"
  2.  
  3. cLine::cLine(cLine **list, cLine *orig)
  4. {
  5.     add_end((cList **)list);
  6.     
  7.     copy(orig);
  8. }
  9.  
  10. cLine::cLine(cLine **list, int _x1, int _y1, int _x2, int _y2, char *_label)
  11. {
  12.     add_end((cList **)list);
  13.     
  14.     x1 = _x1, y1 = _y1, x2 = _x2, y2 = _y2, label = _label;
  15. }
  16.  
  17. void cLine::copy(cLine *orig)
  18. {
  19.     ASSERT(orig != 0);
  20.     
  21.     x1 = orig->x1, y1 = orig->y1, x2 = orig->x2, y2 = orig->y2, label = orig->label;
  22. }
  23.